home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 4_0 / TERMINAL / SRCS / GLUE.A < prev    next >
Text File  |  1990-11-20  |  203b  |  10 lines

  1. ; pascal void SendComplete(void);
  2.  
  3. SendComplete    PROC    EXPORT        ; A0 has address of IOParam
  4.  
  5.                 MOVE.L    -4(A0),A0    ; Get busy flag address
  6.                 CLR.B    0(A0)        ; Clear the busy flag (FALSE)
  7.                 RTS
  8.                 
  9.                 END
  10.